home *** CD-ROM | disk | FTP | other *** search
- // BarChartCell.h
- //
- // Free software created 1 Feb 1992
- // by Paul Burchard <burchard@math.utah.edu>.
-
- #import <appkit/TextFieldCell.h>
-
- @interface BarChartCell : TextFieldCell
- {
- float barValue;
- float barSize, padding;
- float barGray;
- }
-
- - initTextCell:(const char *)aString;
- - drawInside:(const NXRect *)cellFrame inView:controlView;
- - setBarValue:(float)aValue;
- - (float)barValue;
- - setBarSize:(float)aValue;
- - (float)barSize;
- - setPadding:(float)aValue;
- - (float)padding;
- - setBarGray:(float)aValue;
- - (float)barGray;
-
- @end